home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c++-part2 / 14644 < prev    next >
Encoding:
Text File  |  1996-08-05  |  1.4 KB  |  49 lines

  1. Path: news.compuserve.com!newsmaster
  2. From: 76623,2065@compuserve.com  (Bobby Martin)
  3. Newsgroups: comp.lang.c++
  4. Subject: Re: Entry level help
  5. Date: 1 Apr 1996 14:32:46 GMT
  6. Organization: CompuServe Incorporated
  7. Message-ID: <4jopee$lpe@dub-news-svc-1.compuserve.com>
  8. References: <4jnqk5$9l6@geraldo.cc.utexas.edu>
  9. Reply-To: 76623,2065@compuserve.com (Bobby Martin)
  10. NNTP-Posting-Host: ad06-020.compuserve.com
  11. X-Newsreader: IBM NewsReader/2 v1.03
  12.  
  13. There is a typo in the name of the include file you're using.  Use
  14. #include <iostream.h>
  15. instead of
  16. #include <isostream.h>
  17.  
  18. Hope that helps,
  19.  
  20. Bobby Martin
  21.  
  22. In <4jnqk5$9l6@geraldo.cc.utexas.edu>, y.s.l@mail.utexas.edu (Shenling Yang) writes:
  23. >I am a starter of C++, using Bordland C++ V3.1 for windows to start to 
  24. >learn 
  25. >the language under the win95 environment.
  26. >
  27. >The problem arised from:  I started a new file, and follow the 
  28. >book instruction ("The waite group's C++ primer plus" your guys 
  29. >might familiar this book) input simple program like this:
  30. >
  31. >#include <isostream.h>
  32. >int main(void)
  33. >{
  34. >cout << "come up and c++ me some time.";
  35. >cout << "\n";
  36. >return 0;
  37. >}
  38. >
  39. >Saved the file and run compiler, it came out the error msg 
  40. >that "unable to open include file isostream.h, undefined the 
  41. >symbol "cout", undefined symbol "return" ....
  42. >
  43. >Is anyone can help me out of this, thanks in advance, I am a 
  44. >kind of newer, so please send me as detail info as you can.
  45. >
  46. >Mail address:  y.s.l@mail.utexas.edu
  47. >
  48.  
  49.